home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / stream.c < prev    next >
C/C++ Source or Header  |  1997-05-21  |  22KB  |  804 lines

  1. /* Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* stream.c */
  20. /* Stream package for Ghostscript interpreter */
  21. #include "stdio_.h"        /* includes std.h */
  22. #include "memory_.h"
  23. #include "gdebug.h"
  24. #include "gpcheck.h"
  25. #include "stream.h"
  26. #include "strimpl.h"
  27.  
  28. /* Forward declarations */
  29. private int sreadbuf(P2(stream *, stream_cursor_write *));
  30. private int swritebuf(P3(stream *, stream_cursor_read *, bool));
  31. private void stream_compact(P2(stream *, bool));
  32.  
  33. /* Structure types for allocating streams. */
  34. private_st_stream();
  35. public_st_stream_state();    /* default */
  36. /* GC procedures */
  37. #define st ((stream *)vptr)
  38. private ENUM_PTRS_BEGIN(stream_enum_ptrs) return 0;
  39.     case 0:
  40.         if ( st->foreign )
  41.           ENUM_RETURN(NULL);
  42.         else if ( st->cbuf_string.data != 0 )
  43.           ENUM_RETURN_STRING_PTR(stream, cbuf_string);
  44.         else
  45.           ENUM_RETURN(st->cbuf);
  46.     ENUM_PTR(1, stream, strm);
  47.     ENUM_PTR(2, stream, prev);
  48.     ENUM_PTR(3, stream, next);
  49.     ENUM_PTR(4, stream, state);
  50. ENUM_PTRS_END
  51. private RELOC_PTRS_BEGIN(stream_reloc_ptrs) {
  52.     byte *cbuf_old = st->cbuf;
  53.     if ( cbuf_old != 0 && !st->foreign )
  54.     {    long reloc;
  55.         if ( st->cbuf_string.data != 0 )
  56.           {    RELOC_STRING_PTR(stream, cbuf_string);
  57.             st->cbuf = st->cbuf_string.data;
  58.           }
  59.         else
  60.           RELOC_PTR(stream, cbuf);
  61.         reloc = cbuf_old - st->cbuf;
  62.         /* Relocate the other buffer pointers. */
  63.         st->srptr -= reloc;
  64.         st->srlimit -= reloc;        /* same as swptr */
  65.         st->swlimit -= reloc;
  66.     }
  67.     RELOC_PTR(stream, strm);
  68.     RELOC_PTR(stream, prev);
  69.     RELOC_PTR(stream, next);
  70.     RELOC_PTR(stream, state);
  71. } RELOC_PTRS_END
  72. /* Finalize a stream by closing it. */
  73. /* We only do this for file streams, because other kinds of streams */
  74. /* may attempt to free storage when closing. */
  75. private void
  76. stream_finalize(void *vptr)
  77. {    if_debug2('u', "[u]%s 0x%lx\n",
  78.           (!s_is_valid(st) ? "already closed:" :
  79.            st->is_temp ? "is_temp set:" :
  80.            st->file == 0 ? "not file:" :
  81.            "closing file:"), (ulong)st);
  82.     if ( s_is_valid(st) && !st->is_temp && st->file != 0 )
  83.         {    /* Prevent any attempt to free the buffer. */
  84.         st->cbuf = 0;
  85.         st->cbuf_string.data = 0;
  86.         sclose(st);        /* ignore errors */
  87.         }
  88. }
  89. #undef st
  90.  
  91. /* Dummy template for streams that don't have a separate state. */
  92. private const stream_template s_no_template =
  93. {    &st_stream_state, 0, 0, 1, 1, 0
  94. };
  95.  
  96. /* ------ Generic procedures ------ */
  97.  
  98. /* Allocate a stream and initialize it minimally. */
  99. stream *
  100. s_alloc(gs_memory_t *mem, client_name_t cname)
  101. {    stream *s = gs_alloc_struct(mem, stream, &st_stream, cname);
  102.     if_debug2('s', "[s]alloc(%s) = 0x%lx\n",
  103.           client_name_string(cname), (ulong)s);
  104.     if ( s == 0 )
  105.       return 0;
  106.     s->memory = mem;
  107.     s->report_error = s_no_report_error;
  108.     s->prev = s->next = 0;        /* clean for GC */
  109.     return s;
  110. }
  111.  
  112. /* Allocate a stream state and initialize it minimally. */
  113. stream_state *
  114. s_alloc_state(gs_memory_t *mem, gs_memory_type_ptr_t stype,
  115.   client_name_t cname)
  116. {    stream_state *st = gs_alloc_struct(mem, stream_state, stype, cname);
  117.     if_debug3('s', "[s]alloc_state %s(%s) = 0x%lx\n",
  118.           client_name_string(cname),
  119.           client_name_string(stype->sname),
  120.           (ulong)st);
  121.     if ( st == 0 )
  122.       return 0;
  123.     st->memory = mem;
  124.     st->report_error = s_no_report_error;
  125.     return st;
  126. }
  127.  
  128. /* Vacuous stream initialization */
  129. int
  130. s_no_init(stream_state *st)
  131. {    return 0;
  132. }
  133.  
  134. /* Standard stream initialization */
  135. void
  136. s_std_init(register stream *s, byte *ptr, uint len, const stream_procs *pp,
  137.   int modes)
  138. {    s->template = &s_no_template;
  139.     s->cbuf = ptr;
  140.     s->srptr = s->srlimit = s->swptr = ptr - 1;
  141.     s->swlimit = ptr - 1 + len;
  142.     s->end_status = 0;
  143.     s->foreign = 0;
  144.     s->modes = modes;
  145.     s->cbuf_string.data = 0;
  146.     s->position = 0;
  147.     s->bsize = s->cbsize = len;
  148.     s->strm = 0;            /* not a filter */
  149.     s->is_temp = 0;
  150.     s->procs = *pp;
  151.     s->state = (stream_state *)s;    /* hack to avoid separate state */
  152.     s->file = 0;
  153.     if_debug4('s', "[s]init 0x%lx, buf=0x%lx, len=%u, modes=%d\n",
  154.           (ulong)s, (ulong)ptr, len, modes);
  155. }
  156.  
  157. /* Implement a stream procedure as a no-op. */
  158. int
  159. s_std_null(stream *s)
  160. {    return 0;
  161. }
  162.  
  163. /* Discard the contents of the buffer when reading. */
  164. void
  165. s_std_read_reset(stream *s)
  166. {    s->srptr = s->srlimit = s->cbuf - 1;
  167. }
  168.  
  169. /* Discard the contents of the buffer when writing. */
  170. void
  171. s_std_write_reset(stream *s)
  172. {    s->swptr = s->cbuf- 1;
  173. }
  174.  
  175. /* Flush data to end-of-file when reading. */
  176. int
  177. s_std_read_flush(stream *s)
  178. {    while ( 1 )
  179.     {    s->srptr = s->srlimit = s->cbuf - 1;
  180.         if ( s->end_status ) break;
  181.         s_process_read_buf(s);
  182.     }
  183.     return (s->end_status == EOFC ? 0 : s->end_status);
  184. }
  185.  
  186. /* Flush buffered data when writing. */
  187. int
  188. s_std_write_flush(stream *s)
  189. {    return s_process_write_buf(s, false);
  190. }
  191.  
  192. /* Indicate that the number of available input bytes is unknown. */
  193. int
  194. s_std_noavailable(stream *s, long *pl)
  195. {    *pl = -1;
  196.     return 0;
  197. }
  198.  
  199. /* Indicate an error when asked to seek. */
  200. int
  201. s_std_noseek(stream *s, long pos)
  202. {    return ERRC;
  203. }
  204.  
  205. /* Standard stream closing. */
  206. int
  207. s_std_close(stream *s)
  208. {    return 0;
  209. }
  210.  
  211. /* Standard stream mode switching. */
  212. int
  213. s_std_switch_mode(stream *s, bool writing)
  214. {    return ERRC;
  215. }
  216.  
  217. /* Standard stream finalization.  Disable the stream. */
  218. void
  219. s_disable(register stream *s)
  220. {    s->cbuf = 0;
  221.     s->bsize = 0;
  222.     s->end_status = EOFC;
  223.     s->modes = 0;
  224.     s->cbuf_string.data = 0;
  225.     /* The pointers in the next two statements should really be */
  226.     /* initialized to ([const] byte *)0 - 1, but some very picky */
  227.     /* compilers complain about this. */
  228.     s->cursor.r.ptr = s->cursor.r.limit = 0;
  229.     s->cursor.w.limit = 0;
  230.     s->procs.close = s_std_null;
  231.     /* Clear pointers for GC */
  232.     s->strm = 0;
  233.     s->state = (stream_state *)s;
  234.     s->template = &s_no_template;
  235.     /****** SHOULD DO MORE THAN THIS ******/
  236.     if_debug1('s', "[s]disable 0x%lx\n", (ulong)s);
  237. }
  238.  
  239. /* Implement flushing for encoding filters. */
  240. int
  241. s_filter_write_flush(register stream *s)
  242. {    int status = s_process_write_buf(s, false);
  243.     if ( status != 0 )
  244.       return status;
  245.     return sflush(s->strm);
  246. }
  247.  
  248. /* Close a filter.  If this is an encoding filter, flush it first. */
  249. int
  250. s_filter_close(register stream *s)
  251. {    if ( s_is_writing(s) )
  252.     {    int status = s_process_write_buf(s, true);
  253.         if ( status != 0 && status != EOFC )
  254.           return status;
  255.     }
  256.     return s_std_close(s);
  257. }    
  258.  
  259. /* Disregard a stream error message. */
  260. int
  261. s_no_report_error(stream_state *st, const char *str)
  262. {    return 0;
  263. }
  264.  
  265. /* ------ Implementation-independent procedures ------ */
  266.  
  267. /* Store the amount of available data in a(n input) stream. */
  268. int
  269. savailable(stream *s, long *pl)
  270. {    return (*(s)->procs.available)(s, pl);
  271. }
  272.  
  273. /* Return the current position of a stream. */
  274. long
  275. stell(stream *s)
  276. {    /* The stream might have been closed, but the position */
  277.     /* is still meaningful in this case. */
  278.     const byte *ptr = (s_is_writing(s) ? s->swptr : s->srptr);
  279.     return (ptr == 0 ? 0 : ptr + 1 - s->cbuf) + s->position;
  280. }
  281.  
  282. /* Set the position of a stream. */
  283. int
  284. spseek(stream *s, long pos)
  285. {    if_debug3('s', "[s]seek 0x%lx to %ld, position was %ld\n",
  286.           (ulong)s, pos, stell(s));
  287.     return (*(s)->procs.seek)(s, pos);
  288. }
  289.  
  290. /* Switch a stream to read or write mode. */
  291. /* Return 0 or ERRC. */
  292. int
  293. sswitch(register stream *s, bool writing)
  294. {    if ( s->procs.switch_mode == 0 )
  295.       return ERRC;
  296.     return (*s->procs.switch_mode)(s, writing);
  297. }
  298.  
  299. /* Close a stream, disabling it if successful. */
  300. /* (The stream may already be closed.) */
  301. int
  302. sclose(register stream *s)
  303. {    stream_state *st;
  304.     int code = (*s->procs.close)(s);
  305.     if ( code < 0 )
  306.       return code;
  307.     st = s->state;
  308.     if ( st != 0 )
  309.       { stream_proc_release((*release)) = st->template->release;
  310.         if ( release != 0 )
  311.           (*release)(st);
  312.         if ( st != (stream_state *)s && st->memory != 0 )
  313.           gs_free_object(st->memory, st, "s_std_close");
  314.         s->state = (stream_state *)s;
  315.       }
  316.     s_disable(s);
  317.     return code;
  318. }
  319.  
  320. /*
  321.  * Implement sgetc when the buffer may be empty.
  322.  * If the buffer really is empty, refill it and then read a byte.
  323.  * Note that filters must read one byte ahead, so that they can close immediately
  324.  * after the client reads the last data byte if the next thing is an EOD.
  325.  */
  326. int
  327. spgetcc(register stream *s, bool close_on_eof)
  328. {    int status, left;
  329.     int min_left = sbuf_min_left(s);
  330.  
  331.     while ( status = s->end_status,
  332.         left = s->srlimit - s->srptr,
  333.         left <= min_left && status >= 0
  334.           )
  335.       s_process_read_buf(s);
  336.     if ( left <= min_left && (left == 0 || (status != EOFC && status != ERRC)) )
  337.       { /* Compact the stream so stell will return the right result. */
  338.         stream_compact(s, true);
  339.         if ( status == EOFC && close_on_eof )
  340.           { status = sclose(s);
  341.             if ( status == 0 )
  342.           status = EOFC;
  343.         s->end_status = status;
  344.           }
  345.         return status;
  346.       }
  347.     return *++(s->srptr);
  348. }
  349.  
  350. /* Implementing sputc when the buffer is full, */
  351. /* by flushing the buffer and then writing the byte. */
  352. int
  353. spputc(register stream *s, byte b)
  354. {    for ( ; ; )
  355.     {    if ( s->end_status )
  356.           return s->end_status;
  357.         if ( !sendwp(s) )
  358.         {    *++(s->swptr) = b;
  359.             return b;
  360.         }
  361.         s_process_write_buf(s, false);
  362.     }
  363. }
  364.  
  365. /* Push back a character onto a (read) stream. */
  366. /* The character must be the same as the last one read. */
  367. /* Return 0 on success, ERRC on failure. */
  368. int
  369. sungetc(register stream *s, byte c)
  370. {    if ( !s_is_reading(s) || s->srptr < s->cbuf || *(s->srptr) != c )
  371.       return ERRC;
  372.     s->srptr--;
  373.     return 0;
  374. }
  375.  
  376. /* Get a string from a stream. */
  377. /* Return 0 if the string was filled, or an exception status. */
  378. int
  379. sgets(stream *s, byte *buf, uint nmax, uint *pn)
  380. {    stream_cursor_write cw;
  381.     int status = 0;
  382.     int min_left = sbuf_min_left(s);
  383.  
  384.     cw.ptr = buf - 1;
  385.     cw.limit = cw.ptr + nmax;
  386.     while ( cw.ptr < cw.limit )
  387.     {    int left;
  388.         if ( (left = s->srlimit - s->srptr) > min_left )
  389.           { s->srlimit -= min_left;
  390.             stream_move(&s->cursor.r, &cw);
  391.             s->srlimit += min_left;
  392.           }
  393.         else
  394.         {    uint wanted = cw.limit - cw.ptr;
  395.             int c;
  396.             stream_state *st;
  397.             if ( wanted >= s->bsize >> 2 &&
  398.                  (st = s->state) != 0 &&
  399.                  wanted >= st->template->min_out_size &&
  400.                  s->end_status == 0 &&
  401.                  left == 0
  402.                )
  403.             {    byte *wptr = cw.ptr;
  404.                 cw.limit -= min_left;
  405.                 status = sreadbuf(s, &cw);
  406.                 cw.limit += min_left;
  407.                 /* We know the stream buffer is empty, */
  408.                 /* so it's safe to update position. */
  409.                 s->position += cw.ptr - wptr;
  410.                 if ( status != 1 || cw.ptr == cw.limit )
  411.                   break;
  412.             }
  413.             c = spgetc(s);
  414.             if ( c < 0 )
  415.             {    status = c;
  416.                 break;
  417.             }
  418.             *++(cw.ptr) = c;
  419.         }
  420.     }
  421.     *pn = cw.ptr + 1 - buf;
  422.     return (status >= 0 ? 0 : status);
  423. }
  424.  
  425. /* Write a string on a stream. */
  426. /* Return 0 if the entire string was written, or an exception status. */
  427. int
  428. sputs(register stream *s, const byte *str, uint wlen, uint *pn)
  429. {    uint len = wlen;
  430.     int status = s->end_status;
  431.     if ( status >= 0 )
  432.       while ( len > 0 )
  433.     {    uint count = s->swlimit - s->swptr;
  434.         if ( count > 0 )
  435.         {    if ( count > len ) count = len;
  436.             memcpy(s->swptr + 1, str, count);
  437.             s->swptr += count;
  438.             str += count;
  439.             len -= count;
  440.         }
  441.         else
  442.         {    byte ch = *str++;
  443.             status = sputc(s, ch);
  444.             if ( status < 0 )
  445.               break;
  446.             len--;
  447.         }
  448.     }
  449.     *pn = wlen - len;
  450.     return (status >= 0 ? 0 : status);
  451. }
  452.  
  453. /* Skip ahead a specified distance in a read stream. */
  454. /* Return 0 or an exception code. */
  455. /* Store the number of bytes skipped in *pskipped. */
  456. int
  457. spskip(register stream *s, long nskip, long *pskipped)
  458. {    long n = nskip;
  459.     int min_left;
  460.  
  461.     if ( nskip < 0 || !s_is_reading(s) )
  462.       { *pskipped = 0;
  463.         return ERRC;
  464.       }
  465.     if ( s_can_seek(s) )
  466.       { long pos = stell(s);
  467.         int code = sseek(s, pos + n);
  468.         *pskipped = stell(s) - pos;
  469.         return code;
  470.       }
  471.     min_left = sbuf_min_left(s);
  472.     while ( sbufavailable(s) < n + min_left )
  473.       {    int code;
  474.         n -= sbufavailable(s);
  475.         s->srptr = s->srlimit;
  476.         if ( s->end_status )
  477.           { *pskipped = nskip - n;
  478.             return s->end_status;
  479.           }
  480.         code = sgetc(s);
  481.         if ( code < 0 )
  482.           { *pskipped = nskip - n;
  483.             return code;
  484.           }
  485.         --n;
  486.       }
  487.     /* Note that if min_left > 0, n < 0 is possible; this is harmless. */
  488.     s->srptr += n;
  489.     *pskipped = nskip;
  490.     return 0;
  491. }    
  492.  
  493. /* ------ Utilities ------ */
  494.  
  495. /*
  496.  * Attempt to refill the buffer of a read stream.  Only call this if the
  497.  * end_status is not EOFC, and if the buffer is (nearly) empty.
  498.  */
  499. int
  500. s_process_read_buf(stream *s)
  501. {    int status;
  502.     stream_compact(s, false);
  503.     status = sreadbuf(s, &s->cursor.w);
  504.     s->end_status = (status >= 0 ? 0 : status);
  505.     return 0;
  506. }
  507.  
  508. /*
  509.  * Attempt to empty the buffer of a write stream.  Only call this if the
  510.  * end_status is not EOFC.
  511.  */
  512. int
  513. s_process_write_buf(stream *s, bool last)
  514. {    int status = swritebuf(s, &s->cursor.r, last);
  515.     stream_compact(s, false);
  516.     if ( status >= 0 )
  517.       status = 0;
  518.     s->end_status = status;
  519.     return status;
  520. }
  521.  
  522. /* Move forward or backward in a pipeline.  We temporarily reverse */
  523. /* the direction of the pointers while doing this. */
  524. /* (Cf the Deutsch-Schorr-Waite graph marking algorithm.) */
  525. #define move_back(curr, prev)\
  526. { stream *back = prev->strm;\
  527.   prev->strm = curr; curr = prev; prev = back;\
  528. }
  529. #define move_ahead(curr, prev)\
  530. { stream *ahead = curr->strm;\
  531.   curr->strm = prev; prev = curr; curr = ahead;\
  532. }
  533.  
  534. /* Read from a pipeline. */
  535. private int
  536. sreadbuf(stream *s, stream_cursor_write *pbuf)
  537. {    stream *prev = 0;
  538.     stream *curr = s;
  539.     int status;
  540.     for ( ; ; )
  541.     {    stream *strm;
  542.         for ( ; ; )
  543.         {    /* Descend into the recursion. */
  544.             stream_cursor_read cr;
  545.             stream_cursor_read *pr;
  546.             stream_cursor_write *pw;
  547.             bool eof;
  548.  
  549.             strm = curr->strm;
  550.             if ( strm == 0 )
  551.               { cr.ptr = 0, cr.limit = 0;
  552.                 pr = &cr;
  553.                 eof = false;
  554.               }
  555.             else
  556.               { pr = &strm->cursor.r;
  557.                 eof = strm->end_status == EOFC;
  558.               }
  559.             pw = (prev == 0 ? pbuf : &curr->cursor.w);
  560.             if_debug4('s', "[s]read process 0x%lx, nr=%u, nw=%u, eof=%d\n",
  561.                   (ulong)curr, (uint)(pr->limit - pr->ptr),
  562.                   (uint)(pw->limit - pw->ptr), eof);
  563.             status = (*curr->procs.process)(curr->state, pr, pw, eof);
  564.             if_debug4('s', "[s]after read 0x%lx, nr=%u, nw=%u, status=%d\n",
  565.                   (ulong)curr, (uint)(pr->limit - pr->ptr),
  566.                   (uint)(pw->limit - pw->ptr), status);
  567.             if ( strm == 0 || status != 0 )
  568.               break;
  569.             status = strm->end_status;
  570.             if ( status < 0 )
  571.               break;
  572.             move_ahead(curr, prev);
  573.             stream_compact(curr, false);
  574.         }
  575.         /* If curr reached EOD and is a filter stream, close it. */
  576.         if ( strm != 0 && status == EOFC &&
  577.              curr->cursor.r.ptr >= curr->cursor.r.limit
  578.            )
  579.           { int cstat = sclose(curr);
  580.             if ( cstat != 0 )
  581.               status = cstat;
  582.           }
  583. #if 0
  584.         /* If we need to do a callout, unwind all the way now. */
  585.         if ( status == CALLC )
  586.           { while ( (curr->end_status = status), prev != 0 )
  587.               { move_back(curr, prev);
  588.               }
  589.             return status;
  590.           }
  591. #endif
  592.         /* Unwind from the recursion. */
  593.         curr->end_status = (status >= 0 ? 0 : status);
  594.         if ( prev == 0 )
  595.           return status;
  596.         move_back(curr, prev);
  597.     }
  598. }
  599.  
  600. /* Write to a pipeline. */
  601. private int
  602. swritebuf(stream *s, stream_cursor_read *pbuf, bool last)
  603. {    stream *prev = 0;
  604.     stream *curr = s;
  605.     int depth = 0;        /* depth of nesting in non-temp streams */
  606.     int status;
  607.  
  608.     /*
  609.      * The handling of EOFC is a little tricky.  There are two
  610.      * invariants that keep it straight:
  611.      *    - We only pass last = true to a stream if either it is
  612.      * the first stream in the pipeline, or it is a temporary stream
  613.      * below the first stream and the stream immediately above it has
  614.      * end_status = EOFC.
  615.      *    - We never unwind the recursion past a stream with
  616.      * end_status < 0.
  617.      */
  618.     for ( ; ; )
  619.     {    for ( ; ; )
  620.         {    /* Descend into the recursion. */
  621.             stream *strm = curr->strm;
  622.             stream_cursor_write cw;
  623.             stream_cursor_read *pr;
  624.             stream_cursor_write *pw;
  625.             /*
  626.              * We only want to set the last/end flag for
  627.              * the top-level stream and any temporary streams
  628.              * immediately below it.
  629.              */
  630.             bool end = last &&
  631.               (prev == 0 ||
  632.                (depth <= 1 && prev->end_status == EOFC));
  633.  
  634.             if ( strm == 0 )
  635.               cw.ptr = 0, cw.limit = 0, pw = &cw;
  636.             else
  637.               pw = &strm->cursor.w;
  638.             if ( prev == 0 )
  639.               pr = pbuf;
  640.             else
  641.               pr = &curr->cursor.r;
  642.             if_debug4('s', "[s]write process 0x%lx, nr=%u, nw=%u, end=%d\n",
  643.                   (ulong)curr, (uint)(pr->limit - pr->ptr),
  644.                   (uint)(pw->limit - pw->ptr), end);
  645.             status = curr->end_status;
  646.             if ( status < 0 )
  647.               break;
  648.             status = (*curr->procs.process)(curr->state,
  649.                             pr, pw, end);
  650.             if_debug5('s', "[s]after write 0x%lx, nr=%u, nw=%u, end=%d, status=%d\n",
  651.                   (ulong)curr, (uint)(pr->limit - pr->ptr),
  652.                   (uint)(pw->limit - pw->ptr), end, status);
  653.             if ( status == 0 && end )
  654.               status = EOFC;
  655.             if ( status == EOFC || status == ERRC )
  656.               curr->end_status = status;
  657.             if ( strm == 0 || (status < 0 && status != EOFC) )
  658.               break;
  659.             if ( status == 1 )
  660.               end = false;
  661.             else
  662.             {    /* Keep going if we are closing */
  663.                 /* a filter with a sub-stream. */
  664.                 /* We know status == 0 or EOFC. */
  665.                 if ( !end || !strm->is_temp )
  666.                   break;
  667.             }
  668.             status = strm->end_status;
  669.             if ( status < 0 )
  670.               break;
  671.             move_ahead(curr, prev);
  672.             stream_compact(curr, false);
  673.             if ( !curr->is_temp )
  674.               ++depth;
  675.         }
  676.         /* Unwind from the recursion. */
  677.         curr->end_status = (status >= 0 ? 0 : status);
  678.         if ( status < 0 || prev == 0 )
  679.           { /*
  680.              * All streams above here were called with last = true
  681.              * and returned 0 or EOFC: finish unwinding and then
  682.              * return.
  683.              */
  684.             while ( prev )
  685.               { move_back(curr, prev);
  686.             curr->end_status = (status >= 0 ? 0 : status);
  687.               }
  688.             return status;
  689.           }
  690.         move_back(curr, prev);
  691.         if ( !curr->is_temp )
  692.           --depth;
  693.     }
  694. }
  695.  
  696. /* Move as much data as possible from one buffer to another. */
  697. /* Return 0 if the input became empty, 1 if the output became full. */
  698. int
  699. stream_move(stream_cursor_read *pr, stream_cursor_write *pw)
  700. {    uint rcount = pr->limit - pr->ptr;
  701.     uint wcount = pw->limit - pw->ptr;
  702.     uint count;
  703.     int status;
  704.     if ( rcount <= wcount )
  705.       count = rcount, status = 0;
  706.     else
  707.       count = wcount, status = 1;
  708.     memmove(pw->ptr + 1, pr->ptr + 1, count);
  709.     pr->ptr += count;
  710.     pw->ptr += count;
  711.     return status;
  712. }
  713.  
  714. /* If possible, compact the information in a stream buffer to the bottom. */
  715. private void
  716. stream_compact(stream *s, bool always)
  717. {    if ( s->cursor.r.ptr >= s->cbuf && (always || s->end_status >= 0) )
  718.     {    uint dist = s->cursor.r.ptr + 1 - s->cbuf;
  719.         memmove(s->cbuf, s->cursor.r.ptr + 1,
  720.             (uint)(s->cursor.r.limit - s->cursor.r.ptr));
  721.         s->cursor.r.ptr = s->cbuf - 1;
  722.         s->cursor.r.limit -= dist;        /* same as w.ptr */
  723.         s->position += dist;
  724.     }
  725. }
  726.  
  727. /* ------ String streams ------ */
  728.  
  729. /* String stream procedures */
  730. private int
  731.   s_string_available(P2(stream *, long *)),
  732.   s_string_read_seek(P2(stream *, long)),
  733.   s_string_write_seek(P2(stream *, long)),
  734.   s_string_read_process(P4(stream_state *, stream_cursor_read *,
  735.     stream_cursor_write *, bool)),
  736.   s_string_write_process(P4(stream_state *, stream_cursor_read *,
  737.     stream_cursor_write *, bool));
  738.  
  739. /* Initialize a stream for reading a string. */
  740. void
  741. sread_string(register stream *s, const byte *ptr, uint len)
  742. {    static const stream_procs p =
  743.        {    s_string_available, s_string_read_seek, s_std_read_reset,
  744.         s_std_read_flush, s_std_null, s_string_read_process
  745.        };
  746.     s_std_init(s, (byte *)ptr, len, &p, s_mode_read + s_mode_seek);
  747.     s->cbuf_string.data = (byte *)ptr;
  748.     s->cbuf_string.size = len;
  749.     s->end_status = EOFC;
  750.     s->srlimit = s->swlimit;
  751. }
  752. /* Return the number of available bytes when reading from a string. */
  753. private int
  754. s_string_available(stream *s, long *pl)
  755. {    *pl = sbufavailable(s);
  756.     if ( *pl == 0 )        /* EOF */
  757.       *pl = -1;
  758.     return 0;
  759. }
  760.  
  761. /* Seek in a string being read.  Return 0 if OK, ERRC if not. */
  762. private int
  763. s_string_read_seek(register stream *s, long pos)
  764. {    if ( pos < 0 || pos > s->bsize ) return ERRC;
  765.     s->srptr = s->cbuf + pos - 1;
  766.     return 0;
  767. }
  768.  
  769. /* Initialize a stream for writing a string. */
  770. void
  771. swrite_string(register stream *s, byte *ptr, uint len)
  772. {    static const stream_procs p =
  773.        {    s_std_noavailable, s_string_write_seek, s_std_write_reset,
  774.         s_std_null, s_std_null, s_string_write_process
  775.        };
  776.     s_std_init(s, ptr, len, &p, s_mode_write + s_mode_seek);
  777.     s->cbuf_string.data = ptr;
  778.     s->cbuf_string.size = len;
  779. }
  780.  
  781. /* Seek in a string being written.  Return 0 if OK, ERRC if not. */
  782. private int
  783. s_string_write_seek(register stream *s, long pos)
  784. {    if ( pos < 0 || pos > s->bsize ) return ERRC;
  785.     s->swptr = s->cbuf + pos - 1;
  786.     return 0;
  787. }
  788.  
  789. /* Since we initialize the input buffer of a string read stream */
  790. /* to contain all of the data in the string, if we are ever asked */
  791. /* to refill the buffer, we should signal EOF. */
  792. private int
  793. s_string_read_process(stream_state *st, stream_cursor_read *ignore_pr,
  794.   stream_cursor_write *pw, bool last)
  795. {    return EOFC;
  796. }
  797. /* Similarly, if we are ever asked to empty the buffer, it means that */
  798. /* there has been an overrun (unless we are closing the stream). */
  799. private int
  800. s_string_write_process(stream_state *st, stream_cursor_read *pr,
  801.   stream_cursor_write *ignore_pw, bool last)
  802. {    return (last ? EOFC : ERRC);
  803. }
  804.